home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / smalltlk.zip / TESTS / TEMP.ST < prev    next >
Text File  |  1987-06-17  |  128b  |  9 lines

  1. Class Main
  2. [
  3.     main        | i |
  4.  
  5.         i <- 1.
  6.         [i < 3] whileTrue: [i print. i <- i + 1]
  7. ]
  8.  
  9.